home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Kit PC World De Ampliacion De Windows 95
/
Kit PC World de ampliacion de Windows 95.iso
/
internet
/
sweeper
/
samples
/
olecon~1
/
wizards
/
automain.bas
< prev
next >
Wrap
BASIC Source File
|
1995-11-25
|
881b
|
45 lines
Attribute VB_Name = "MainModule"
'=---------------------------------------------------------=
' we have to get the following information for each control
'
Global szControlName As String
Global szServerName As String
Global szFinalDir As String
Global g_fSatellite As Boolean
Global g_szSubClassName As String
Global szSourceDir As String
Global Const STAGE_WELCOME = 1
Global Const STAGE_CONTROLNAME = 2
Global Const STAGE_SERVERNAME = 3
Global Const STAGE_CONTROLDIR = 4
Global Const STAGE_FINISHING = 5
Global iStage As Integer
Public Sub TerminateApplication()
End
End Sub
Sub main()
szSourceDir = "e:\controls\template"
iStage = STAGE_WELCOME
Load frmMainWizard
frmMainWizard.Show vbModal
Unload frmMainWizard
frmTransform.Show
Unload frmTransform
End
End Sub